home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / perl5 / CPAN.z / CPAN
Encoding:
Text File  |  2002-10-03  |  25.8 KB  |  661 lines

  1.  
  2.  
  3.  
  4. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CPAN - query, download and build perl modules from CPAN sites
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      Interactive mode:
  13.  
  14.        perl -MCPAN -e shell;
  15.  
  16.      Batch mode:
  17.  
  18.        use CPAN;
  19.  
  20.        autobundle, clean, install, make, recompile, test
  21.  
  22.  
  23. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  24.      The CPAN module is designed to automate the make and install of perl
  25.      modules and extensions. It includes some searching capabilities and knows
  26.      how to use Net::FTP or LWP (or lynx or an external ftp client) to fetch
  27.      the raw data from the net.
  28.  
  29.      Modules are fetched from one or more of the mirrored CPAN (Comprehensive
  30.      Perl Archive Network) sites and unpacked in a dedicated directory.
  31.  
  32.      The CPAN module also supports the concept of named and versioned
  33.      'bundles' of modules. Bundles simplify the handling of sets of related
  34.      modules. See BUNDLES below.
  35.  
  36.      The package contains a session manager and a cache manager. There is no
  37.      status retained between sessions. The session manager keeps track of what
  38.      has been fetched, built and installed in the current session. The cache
  39.      manager keeps track of the disk space occupied by the make processes and
  40.      deletes excess space according to a simple FIFO mechanism.
  41.  
  42.      For extended searching capabilities there's a plugin for CPAN available,
  43.      the _C_P_A_N::_W_A_I_T manpage. CPAN::WAIT is a full-text search engine that
  44.      indexes all documents available in CPAN authors directories. If
  45.      CPAN::WAIT is installed on your system, the interactive shell of
  46.      <CPAN.pm> will enable the wq, wr, wd, wl, and wh commands which send
  47.      queries to the WAIT server that has been configured for your
  48.      installation.
  49.  
  50.      All other methods provided are accessible in a programmer style and in an
  51.      interactive shell style.
  52.  
  53.      IIIInnnntttteeeerrrraaaaccccttttiiiivvvveeee MMMMooooddddeeee
  54.  
  55.      The interactive mode is entered by running
  56.  
  57.          perl -MCPAN -e shell
  58.  
  59.      which puts you into a readline interface. You will have the most fun if
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  71.  
  72.  
  73.  
  74.      you install Term::ReadKey and Term::ReadLine to enjoy both history and
  75.      command completion.
  76.  
  77.      Once you are on the command line, type 'h' and the rest should be self-
  78.      explanatory.
  79.  
  80.      The most common uses of the interactive modes are
  81.  
  82.      Searching for authors, bundles, distribution files and modules
  83.        There are corresponding one-letter commands a, b, d, and m for each of
  84.        the four categories and another, i for any of the mentioned four. Each
  85.        of the four entities is implemented as a class with slightly differing
  86.        methods for displaying an object.
  87.  
  88.        Arguments you pass to these commands are either strings exactly
  89.        matching the identification string of an object or regular expressions
  90.        that are then matched case-insensitively against various attributes of
  91.        the objects. The parser recognizes a regular expression only if you
  92.        enclose it between two slashes.
  93.  
  94.        The principle is that the number of found objects influences how an
  95.        item is displayed. If the search finds one item, the result is
  96.        displayed as object->as_string, but if we find more than one, we
  97.        display each as object->as_glimpse. E.g.
  98.  
  99.            cpan> a ANDK
  100.            Author id = ANDK
  101.                EMAIL        a.koenig@franz.ww.TU-Berlin.DE
  102.                FULLNAME     Andreas Kvnig
  103.  
  104.            cpan> a /andk/
  105.            Author id = ANDK
  106.                EMAIL        a.koenig@franz.ww.TU-Berlin.DE
  107.                FULLNAME     Andreas Kvnig
  108.  
  109.            cpan> a /and.*rt/
  110.            Author          ANDYD (Andy Dougherty)
  111.            Author          MERLYN (Randal L. Schwartz)
  112.  
  113.  
  114.      make, test, install, clean  modules or distributions
  115.        These commands take any number of arguments and investigate what is
  116.        necessary to perform the action. If the argument is a distribution file
  117.        name (recognized by embedded slashes), it is processed. If it is a
  118.        module, CPAN determines the distribution file in which this module is
  119.        included and processes that.
  120.  
  121.        Any make or test are run unconditionally. An
  122.  
  123.          install <distribution_file>
  124.  
  125.        also is run unconditionally. But for
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  137.  
  138.  
  139.  
  140.          install <module>
  141.  
  142.        CPAN checks if an install is actually needed for it and prints _m_o_d_u_l_e
  143.        _u_p _t_o _d_a_t_e in the case that the distribution file containing the module
  144.        doesn't need to be updated.
  145.  
  146.        CPAN also keeps track of what it has done within the current session
  147.        and doesn't try to build a package a second time regardless if it
  148.        succeeded or not. The force command takes as a first argument the
  149.        method to invoke (currently: make, test, or install) and executes the
  150.        command from scratch.
  151.  
  152.        Example:
  153.  
  154.            cpan> install OpenGL
  155.            OpenGL is up to date.
  156.            cpan> force install OpenGL
  157.            Running make
  158.            OpenGL-0.4/
  159.            OpenGL-0.4/COPYRIGHT
  160.            [...]
  161.  
  162.        A clean command results in a
  163.  
  164.          make clean
  165.  
  166.        being executed within the distribution file's working directory.
  167.  
  168.      readme, look module or distribution
  169.        These two commands take only one argument, be it a module or a
  170.        distribution file. readme unconditionally runs, displaying the README
  171.        of the associated distribution file. Look gets and untars (if not yet
  172.        done) the distribution file, changes to the appropriate directory and
  173.        opens a subshell process in that directory.
  174.  
  175.      Signals
  176.        CPAN.pm installs signal handlers for SIGINT and SIGTERM. While you are
  177.        in the cpan-shell it is intended that you can press ^C anytime and
  178.        return to the cpan-shell prompt. A SIGTERM will cause the cpan-shell to
  179.        clean up and leave the shell loop. You can emulate the effect of a
  180.        SIGTERM by sending two consecutive SIGINTs, which usually means by
  181.        pressing ^C twice.
  182.  
  183.        CPAN.pm ignores a SIGPIPE. If the user sets inactivity_timeout, a
  184.        SIGALRM is used during the run of the perl Makefile.PL subprocess.
  185.  
  186.      CCCCPPPPAAAANNNN::::::::SSSShhhheeeellllllll
  187.  
  188.      The commands that are available in the shell interface are methods in the
  189.      package CPAN::Shell. If you enter the shell command, all your input is
  190.      split by the _T_e_x_t::_P_a_r_s_e_W_o_r_d_s::_s_h_e_l_l_w_o_r_d_s() routine which acts like most
  191.      shells do. The first word is being interpreted as the method to be called
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  203.  
  204.  
  205.  
  206.      and the rest of the words are treated as arguments to this method.
  207.      Continuation lines are supported if a line ends with a literal backslash.
  208.  
  209.      aaaauuuuttttoooobbbbuuuunnnnddddlllleeee
  210.  
  211.      autobundle writes a bundle file into the $CPAN::Config-
  212.      >{cpan_home}/Bundle directory. The file contains a list of all modules
  213.      that are both available from CPAN and currently installed within @INC.
  214.      The name of the bundle file is based on the current date and a counter.
  215.  
  216.      rrrreeeeccccoooommmmppppiiiilllleeee
  217.  
  218.      _r_e_c_o_m_p_i_l_e() is a very special command in that it takes no argument and
  219.      runs the make/test/install cycle with brute force over all installed
  220.      dynamically loadable extensions (aka XS modules) with 'force' in effect.
  221.      The primary purpose of this command is to finish a network installation.
  222.      Imagine, you have a common source tree for two different architectures.
  223.      You decide to do a completely independent fresh installation. You start
  224.      on one architecture with the help of a Bundle file produced earlier. CPAN
  225.      installs the whole Bundle for you, but when you try to repeat the job on
  226.      the second architecture, CPAN responds with a "Foo up to date" message
  227.      for all modules. So you invoke CPAN's recompile on the second
  228.      architecture and you're done.
  229.  
  230.      Another popular use for recompile is to act as a rescue in case your perl
  231.      breaks binary compatibility. If one of the modules that CPAN uses is in
  232.      turn depending on binary compatibility (so you cannot run CPAN commands),
  233.      then you should try the CPAN::Nox module for recovery.
  234.  
  235.      TTTThhhheeee ffffoooouuuurrrr CCCCPPPPAAAANNNN::::::::**** Classes: Author, Bundle, Module, Distribution
  236.  
  237.      Although it may be considered internal, the class hierarchy does matter
  238.      for both users and programmer. CPAN.pm deals with above mentioned four
  239.      classes, and all those classes share a set of methods. A classical single
  240.      polymorphism is in effect. A metaclass object registers all objects of
  241.      all kinds and indexes them with a string. The strings referencing objects
  242.      have a separated namespace (well, not completely separated):
  243.  
  244.               Namespace                         Class
  245.  
  246.         words containing a "/" (slash)      Distribution
  247.          words starting with Bundle::          Bundle
  248.                everything else            Module or Author
  249.  
  250.      Modules know their associated Distribution objects. They always refer to
  251.      the most recent official release. Developers may mark their releases as
  252.      unstable development versions (by inserting an underbar into the visible
  253.      version number), so the really hottest and newest distribution file is
  254.      not always the default.  If a module Foo circulates on CPAN in both
  255.      version 1.23 and 1.23_90, CPAN.pm offers a convenient way to install
  256.      version 1.23 by saying
  257.  
  258.  
  259.  
  260.  
  261.                                                                         PPPPaaaaggggeeee 4444
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  269.  
  270.  
  271.  
  272.          install Foo
  273.  
  274.      This would install the complete distribution file (say BAR/Foo-
  275.      1.23.tar.gz) with all accompanying material. But if you would like to
  276.      install version 1.23_90, you need to know where the distribution file
  277.      resides on CPAN relative to the authors/id/ directory. If the author is
  278.      BAR, this might be BAR/Foo-1.23_90.tar.gz; so you would have to say
  279.  
  280.          install BAR/Foo-1.23_90.tar.gz
  281.  
  282.      The first example will be driven by an object of the class CPAN::Module,
  283.      the second by an object of class CPAN::Distribution.
  284.  
  285.      PPPPrrrrooooggggrrrraaaammmmmmmmeeeerrrr''''ssss iiiinnnntttteeeerrrrffffaaaacccceeee
  286.  
  287.      If you do not enter the shell, the available shell commands are both
  288.      available as methods (CPAN::Shell->install(...)) and as functions in the
  289.      calling package (install(...)).
  290.  
  291.      There's currently only one class that has a stable interface -
  292.      CPAN::Shell. All commands that are available in the CPAN shell are
  293.      methods of the class CPAN::Shell. Each of the commands that produce
  294.      listings of modules (r, autobundle, u) returns a list of the IDs of all
  295.      modules within the list.
  296.  
  297.      expand($type,@things)
  298.        The IDs of all objects available within a program are strings that can
  299.        be expanded to the corresponding real objects with the CPAN::Shell-
  300.        >expand("Module",@things) method. Expand returns a list of CPAN::Module
  301.        objects according to the @things arguments given. In scalar context it
  302.        only returns the first element of the list.
  303.  
  304.      Programming Examples
  305.        This enables the programmer to do operations that combine
  306.        functionalities that are available in the shell.
  307.  
  308.            # install everything that is outdated on my disk:
  309.            perl -MCPAN -e 'CPAN::Shell->install(CPAN::Shell->r)'
  310.  
  311.            # install my favorite programs if necessary:
  312.            for $mod (qw(Net::FTP MD5 Data::Dumper)){
  313.                my $obj = CPAN::Shell->expand('Module',$mod);
  314.                $obj->install;
  315.            }
  316.  
  317.            # list all modules on my disk that have no VERSION number
  318.            for $mod (CPAN::Shell->expand("Module","/./")){
  319.                next unless $mod->inst_file;
  320.                # MakeMaker convention for undefined $VERSION:
  321.                next unless $mod->inst_version eq "undef";
  322.                print "No VERSION in ", $mod->id, "\n";
  323.            }
  324.  
  325.  
  326.  
  327.                                                                         PPPPaaaaggggeeee 5555
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  335.  
  336.  
  337.  
  338.      MMMMeeeetttthhhhooooddddssss iiiinnnn tttthhhheeee ffffoooouuuurrrr
  339.  
  340.      CCCCaaaacccchhhheeee MMMMaaaannnnaaaaggggeeeerrrr
  341.  
  342.      Currently the cache manager only keeps track of the build directory
  343.      ($CPAN::Config->{build_dir}). It is a simple FIFO mechanism that deletes
  344.      complete directories below build_dir as soon as the size of all
  345.      directories there gets bigger than $CPAN::Config->{build_cache} (in MB).
  346.      The contents of this cache may be used for later re-installations that
  347.      you intend to do manually, but will never be trusted by CPAN itself. This
  348.      is due to the fact that the user might use these directories for building
  349.      modules on different architectures.
  350.  
  351.      There is another directory ($CPAN::Config->{keep_source_where}) where the
  352.      original distribution files are kept. This directory is not covered by
  353.      the cache manager and must be controlled by the user. If you choose to
  354.      have the same directory as build_dir and as keep_source_where directory,
  355.      then your sources will be deleted with the same fifo mechanism.
  356.  
  357.      BBBBuuuunnnnddddlllleeeessss
  358.  
  359.      A bundle is just a perl module in the namespace Bundle:: that does not
  360.      define any functions or methods. It usually only contains documentation.
  361.  
  362.      It starts like a perl module with a package declaration and a $VERSION
  363.      variable. After that the pod section looks like any other pod with the
  364.      only difference being that _o_n_e _s_p_e_c_i_a_l _p_o_d _s_e_c_t_i_o_n exists starting with
  365.      (verbatim):
  366.  
  367.              =head1 CONTENTS
  368.  
  369.      In this pod section each line obeys the format
  370.  
  371.              Module_Name [Version_String] [- optional text]
  372.  
  373.      The only required part is the first field, the name of a module (e.g.
  374.      Foo::Bar, ie. _n_o_t the name of the distribution file). The rest of the
  375.      line is optional. The comment part is delimited by a dash just as in the
  376.      man page header.
  377.  
  378.      The distribution of a bundle should follow the same convention as other
  379.      distributions.
  380.  
  381.      Bundles are treated specially in the CPAN package. If you say 'install
  382.      Bundle::Tkkit' (assuming such a bundle exists), CPAN will install all the
  383.      modules in the CONTENTS section of the pod. You can install your own
  384.      Bundles locally by placing a conformant Bundle file somewhere into your
  385.      @INC path. The _a_u_t_o_b_u_n_d_l_e() command which is available in the shell
  386.      interface does that for you by including all currently installed modules
  387.      in a snapshot bundle file.
  388.  
  389.  
  390.  
  391.  
  392.  
  393.                                                                         PPPPaaaaggggeeee 6666
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  401.  
  402.  
  403.  
  404.      PPPPrrrreeeerrrreeeeqqqquuuuiiiissssiiiitttteeeessss
  405.  
  406.      If you have a local mirror of CPAN and can access all files with "file:"
  407.      URLs, then you only need a perl better than perl5.003 to run this module.
  408.      Otherwise Net::FTP is strongly recommended. LWP may be required for non-
  409.      UNIX systems or if your nearest CPAN site is associated with an URL that
  410.      is not ftp:.
  411.  
  412.      If you have neither Net::FTP nor LWP, there is a fallback mechanism
  413.      implemented for an external ftp command or for an external lynx command.
  414.  
  415.      FFFFiiiinnnnddddiiiinnnngggg ppppaaaacccckkkkaaaaggggeeeessss aaaannnndddd VVVVEEEERRRRSSSSIIIIOOOONNNN
  416.  
  417.      This module presumes that all packages on CPAN
  418.  
  419.      +o declare their $VERSION variable in an easy to parse manner. This
  420.        prerequisite can hardly be relaxed because it consumes far too much
  421.        memory to load all packages into the running program just to determine
  422.        the $VERSION variable. Currently all programs that are dealing with
  423.        version use something like this
  424.  
  425.            perl -MExtUtils::MakeMaker -le \
  426.                'print MM->parse_version(shift)' filename
  427.  
  428.        If you are author of a package and wonder if your $VERSION can be
  429.        parsed, please try the above method.
  430.  
  431.      +o come as compressed or gzipped tarfiles or as zip files and contain a
  432.        Makefile.PL (well, we try to handle a bit more, but without much
  433.        enthusiasm).
  434.  
  435.      DDDDeeeebbbbuuuuggggggggiiiinnnngggg
  436.  
  437.      The debugging of this module is pretty difficult, because we have
  438.      interferences of the software producing the indices on CPAN, of the
  439.      mirroring process on CPAN, of packaging, of configuration, of
  440.      synchronicity, and of bugs within CPAN.pm.
  441.  
  442.      In interactive mode you can try "o debug" which will list options for
  443.      debugging the various parts of the package. The output may not be very
  444.      useful for you as it's just a by-product of my own testing, but if you
  445.      have an idea which part of the package may have a bug, it's sometimes
  446.      worth to give it a try and send me more specific output. You should know
  447.      that "o debug" has built-in completion support.
  448.  
  449.      FFFFllllooooppppppppyyyy,,,, ZZZZiiiipppp,,,, aaaannnndddd aaaallllllll tttthhhhaaaatttt JJJJaaaazzzzzzzz
  450.  
  451.      CPAN.pm works nicely without network too. If you maintain machines that
  452.      are not networked at all, you should consider working with file:  URLs.
  453.      Of course, you have to collect your modules somewhere first. So you might
  454.      use CPAN.pm to put together all you need on a networked machine. Then
  455.      copy the $CPAN::Config->{keep_source_where} (but not
  456.  
  457.  
  458.  
  459.                                                                         PPPPaaaaggggeeee 7777
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  467.  
  468.  
  469.  
  470.      $CPAN::Config->{build_dir}) directory on a floppy. This floppy is kind of
  471.      a personal CPAN. CPAN.pm on the non-networked machines works nicely with
  472.      this floppy.
  473.  
  474. CCCCOOOONNNNFFFFIIIIGGGGUUUURRRRAAAATTTTIIIIOOOONNNN
  475.      When the CPAN module is installed, a site wide configuration file is
  476.      created as CPAN/Config.pm. The default values defined there can be
  477.      overridden in another configuration file: CPAN/MyConfig.pm. You can store
  478.      this file in $HOME/.cpan/CPAN/MyConfig.pm if you want, because
  479.      $HOME/.cpan is added to the search path of the CPAN module before the
  480.      _u_s_e() or _r_e_q_u_i_r_e() statements.
  481.  
  482.      Currently the following keys in the hash reference $CPAN::Config are
  483.      defined:
  484.  
  485.        build_cache        size of cache for directories to build modules
  486.        build_dir          locally accessible directory to build modules
  487.        index_expire       after this many days refetch index files
  488.        cpan_home          local directory reserved for this package
  489.        gzip               location of external program gzip
  490.        inactivity_timeout breaks interactive Makefile.PLs after this
  491.                           many seconds inactivity. Set to 0 to never break.
  492.        inhibit_startup_message
  493.                           if true, does not print the startup message
  494.        keep_source        keep the source in a local directory?
  495.        keep_source_where  directory in which to keep the source (if we do)
  496.        make               location of external make program
  497.        make_arg           arguments that should always be passed to 'make'
  498.        make_install_arg   same as make_arg for 'make install'
  499.        makepl_arg         arguments passed to 'perl Makefile.PL'
  500.        pager              location of external program more (or any pager)
  501.        tar                location of external program tar
  502.        unzip              location of external program unzip
  503.        urllist            arrayref to nearby CPAN sites (or equivalent locations)
  504.        wait_list          arrayref to a wait server to try (See CPAN::WAIT)
  505.  
  506.      You can set and query each of these options interactively in the cpan
  507.      shell with the command set defined within the o conf command:
  508.  
  509.      o conf <scalar option>
  510.        prints the current value of the _s_c_a_l_a_r _o_p_t_i_o_n
  511.  
  512.      o conf <scalar option> <value>
  513.        Sets the value of the _s_c_a_l_a_r _o_p_t_i_o_n to _v_a_l_u_e
  514.  
  515.      o conf <list option>
  516.        prints the current value of the _l_i_s_t _o_p_t_i_o_n in MakeMaker's neatvalue
  517.        format.
  518.  
  519.      o conf <list option> [shift|pop]
  520.        shifts or pops the array in the _l_i_s_t _o_p_t_i_o_n variable
  521.  
  522.  
  523.  
  524.  
  525.                                                                         PPPPaaaaggggeeee 8888
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  533.  
  534.  
  535.  
  536.      o conf <list option> [unshift|push|splice] <list>
  537.        works like the corresponding perl commands.
  538.  
  539.      uuuurrrrlllllllliiiisssstttt ppppaaaarrrraaaammmmeeeetttteeeerrrr hhhhaaaassss CCCCDDDD----RRRROOOOMMMM ssssuuuuppppppppoooorrrrtttt
  540.  
  541.      The urllist parameter of the configuration table contains a list of URLs
  542.      that are to be used for downloading. If the list contains any file URLs,
  543.      CPAN always tries to get files from there first. This feature is disabled
  544.      for index files. So the recommendation for the owner of a CD-ROM with
  545.      CPAN contents is: include your local, possibly outdated CD-ROM as a file
  546.      URL at the end of urllist, e.g.
  547.  
  548.        o conf urllist push file://localhost/CDROM/CPAN
  549.  
  550.      CPAN.pm will then fetch the index files from one of the CPAN sites that
  551.      come at the beginning of urllist. It will later check for each module if
  552.      there is a local copy of the most recent version.
  553.  
  554.      Another peculiarity of urllist is that the site that we could
  555.      successfully fetch the last file from automatically gets a preference
  556.      token and is tried as the first site for the next request. So if you add
  557.      a new site at runtime it may happen that the previously preferred site
  558.      will be tried another time. This means that if you want to disallow a
  559.      site for the next transfer, it must be explicitly removed from urllist.
  560.  
  561. SSSSEEEECCCCUUUURRRRIIIITTTTYYYY
  562.      There's no strong security layer in CPAN.pm. CPAN.pm helps you to install
  563.      foreign, unmasked, unsigned code on your machine. We compare to a
  564.      checksum that comes from the net just as the distribution file itself. If
  565.      somebody has managed to tamper with the distribution file, they may have
  566.      as well tampered with the CHECKSUMS file. Future development will go
  567.      towards strong authentification.
  568.  
  569. EEEEXXXXPPPPOOOORRRRTTTT
  570.      Most functions in package CPAN are exported per default. The reason for
  571.      this is that the primary use is intended for the cpan shell or for
  572.      oneliners.
  573.  
  574. BBBBUUUUGGGGSSSS
  575.      We should give coverage for _all_ of the CPAN and not just the PAUSE
  576.      part, right? In this discussion CPAN and PAUSE have become equal -- but
  577.      they are not. PAUSE is authors/ and modules/. CPAN is PAUSE plus the
  578.      clpa/, doc/, misc/, ports/, src/, scripts/.
  579.  
  580.      Future development should be directed towards a better integration of the
  581.      other parts.
  582.  
  583.      If a Makefile.PL requires special customization of libraries, prompts the
  584.      user for special input, etc. then you may find CPAN is not able to build
  585.      the distribution. In that case, you should attempt the traditional method
  586.      of building a Perl module package from a shell.
  587.  
  588.  
  589.  
  590.  
  591.                                                                         PPPPaaaaggggeeee 9999
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598. CCCCPPPPAAAANNNN((((3333))))                                                                CCCCPPPPAAAANNNN((((3333))))
  599.  
  600.  
  601.  
  602. AAAAUUUUTTTTHHHHOOOORRRR
  603.      Andreas Kvnig <a.koenig@kulturbox.de>
  604.  
  605. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  606.      _p_e_r_l(1), _C_P_A_N::_N_o_x(3)
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657.                                                                        PPPPaaaaggggeeee 11110000
  658.  
  659.  
  660.  
  661.